Skip to main content

Get Channels List

Overview


The table below provides key details about the GET method for retrieving a channel list.

Get Channels List
MethodGET
URL or Endpoint/api/v2/projectId/channels
HeadersAuthorization
ParametershealthStatusId, liveStatusId, search, order, insertedDate, page, take, projectId

The description of the URL parameter is as follows:

projectId URL Parameter
URL Parameter NameprojectId
MandatoryYes
Typestring
DescriptionUnique Id of the project.
healthStatusId URL Parameter
URL Parameter NamehealthStatusId
MandatoryNo
Typeinteger($int32)
DescriptionHealth status unique id for the channel
liveStatusId URL Parameter
URL Parameter NameliveStatusId
MandatoryNo
Typeinteger($int32)
DescriptionLive status unique id for the project.
search URL Parameter
URL Parameter Namesearch
MandatoryNo
Typestring
DescriptionSearch for a specific channel
order URL Parameter
URL Parameter Nameorder
MandatoryNo
Typestring
DescriptionSpecified the order position of the channel
insertedDate URL Parameter
URL Parameter NameinsertedDate
MandatoryNo
Typestring($date-time)
DescriptionDate time
page URL Parameter
URL Parameter Namepage
MandatoryNo
Typeinteger($int32)
DescriptionCurrent page you want to receive
take URL Parameter
URL Parameter Nametake
MandatoryNo
Typeinteger($int32)
DescriptionNumber of channels you want to receive

Request Body

The body does not have body request

Response

{
"success": true,
"errors": [],
"messages": [],
"result": {
"items": [
{
"publicId": "{channelId}",
"title": "newchanneltest",
"logo": null,
"healthStatus": "Unknown",
"liveStatus": "Offline",
"inputType": "RtmpPush",
"orderNumber": null
},
{
"publicId": "{channelId}",
"title": "testinput",
"logo": null,
"healthStatus": "Unknown",
"liveStatus": "Offline",
"inputType": "RtmpPull",
"orderNumber": null
},
{
"publicId": "{channelId}",
"title": "techchannel13",
"logo": null,
"healthStatus": "Unknown",
"liveStatus": "Offline",
"inputType": "RtmpPush",
"orderNumber": null
},
{
"publicId": "{channelId}",
"title": "test",
"logo": null,
"healthStatus": "Unknown",
"liveStatus": "Offline",
"inputType": "RtmpPush",
"orderNumber": null
},
{
"publicId": "{channelId}",
"title": "testchannel",
"logo": "https://cdn.vpplayer.tech/cxxxxxxxx/x/channels/cxxxxxxxx/logo/bxxxxx-xxxx-xxxx-xxxx-xxxxxxx.png",
"healthStatus": "Unknown",
"liveStatus": "Offline",
"inputType": "RtmpPush",
"orderNumber": null
},
{
"publicId": "{channelId}",
"title": "NewTtitle",
"logo": null,
"healthStatus": "Unknown",
"liveStatus": "Offline",
"inputType": "RtmpPull",
"orderNumber": null
},
{
"publicId": "{channelId}",
"title": "testid",
"logo": null,
"healthStatus": "Unknown",
"liveStatus": "Offline",
"inputType": "RtmpPush",
"orderNumber": null
}
]
},
"resultInfo": null,
"statusCode": 200
}

Information about the fields that appear when you receive the response are displayed in the table below.

Field NameTypeDescription
successboolIf the response is successful it will return true. Otherwise will return false.
errorsarray[]Indicates if there was an error.
messagesarray[]Returns the response message from back-end.
resultarray[Object]Returns the response object.
publicIdstringReturns the public identifier of the channel
titlestringReturns the title of the channel
logostring($binary)Returns the URL for the channel's logo
healthStatusstringIndicate the health status of the channel
liveStatusstringIndicate the live status of the channel
inputTypestringSpecifies input type of the channel
orderNumberstringReturns order position of the channel
resultInfostringReturns extra information about the result.
statusCodeinteger($int32)Returns the HTTP Status Code.

If the action is successful, the service sends back an HTTP 200 or 201 response.

Errors

For information about the errors that are common to all actions, see Common Errors:

  • HTTP Status Code 400: Bad Request

  • HTTP Status Code 401: Unauthorized

  • HTTP Status Code 403: Forbidden

  • HTTP Status Code 404: Result Not Found

  • HTTP Status Code 500: Internal Server Error

  • HTTP Status Code 503: Backend Fetch Failed